home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / dsp / dspgroup / m56000_1.arc / FFT64.ASM < prev    next >
Encoding:
Assembly Source File  |  1986-01-23  |  454 b   |  31 lines

  1.     page    132,66,2,2
  2.     opt    nomd,nomex,loc,cre,nocex
  3.  
  4.     include    'fftlib'
  5.  
  6. ;
  7. ; Main program to call the FFT macro
  8. ;    Argument list
  9. ;
  10. ;    64 point complex DIT FFT
  11. ;    6 FFT passes
  12. ;    Data starts at address 0
  13. ;    Twiddle factor table starts at address 64
  14. ;
  15. reset    equ    0
  16. start    equ    $100
  17. points    equ    64
  18. passes    equ    6
  19. data    equ    0
  20. twiddle    equ    64
  21.  
  22.     sin64    twiddle
  23.  
  24.     opt    mex
  25.     org    p:reset
  26.     jmp    start
  27.  
  28.     org    p:start
  29.     ditfft    points,passes,data,twiddle
  30.     end
  31.